From: Stéphane Glondu Date: Sun, 14 Dec 2025 09:53:11 +0000 (+0100) Subject: fma test from test suite fails on hppa, enable emulation like on m68k X-Git-Tag: archive/raspbian/5.4.0-1+rpi1^2~12 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=06712b40d36055ae9dc843693cb2777a7452b886;p=ocaml.git fma test from test suite fails on hppa, enable emulation like on m68k --- diff --git a/debian/rules b/debian/rules index 06c312c0..1916a550 100755 --- a/debian/rules +++ b/debian/rules @@ -72,6 +72,10 @@ endif ifeq (m68k,$(DEB_BUILD_ARCH)) CONFIGURE_OPTS += --enable-imprecise-c99-float-ops IGNORE_TESTS_FAILURE := || true +# fma test from test suite fails on hppa, enable emulation like on m68k +else ifeq (hppa,$(DEB_BUILD_ARCH)) +CONFIGURE_OPTS += --enable-imprecise-c99-float-ops +IGNORE_TESTS_FAILURE := || true else ifneq (,$(findstring hurd,$(DEB_BUILD_ARCH))) IGNORE_TESTS_FAILURE := || true else